b242f46d335e0f7114f8d1e37e2831a8e7196900,source/org/jasig/portal/channels/CWebProxy.java,CWebProxy,setStaticData,#ChannelStaticData#,103
Before Change
{
try
{
this.xmlUri = sd.getParameter ("xml");
this.sslUri = sd.getParameter ("ssl");
this.fullxmlUri = sd.getParameter ("xml");
this.passThrough = sd.getParameter ("passThrough");
After Change
{
// to add: if not already set, make a copy of sd for the "reset" command
this.xmlUri = sd.getParameter ("cw_xml");
this.sslUri = sd.getParameter ("cw_ssl");
this.fullxmlUri = sd.getParameter ("cw_xml");
this.passThrough = sd.getParameter ("cw_passThrough");
this.tidy = sd.getParameter ("cw_tidy");
this.infoUri = sd.getParameter ("cw_info");
this.helpUri = sd.getParameter ("cw_help");
this.editUri = sd.getParameter ("cw_edit");
}
catch (Exception e)